home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / powervww / pvinit.h < prev    next >
Text File  |  1998-01-05  |  2KB  |  57 lines

  1. //  ____________________________________________________
  2. // |                                                    |
  3. // |  Project:     POWER VIEW INTERFACE                 |
  4. // |  File:        PVINIT.H                             |
  5. // |  Compiler:    WPP386 (10.6)                        |
  6. // |                                                    |
  7. // |  Subject:     Startup initialization interface     |
  8. // |                                                    |
  9. // |  Author:      Emil Dotchevski                      |
  10. // |____________________________________________________|
  11. //
  12. // E-mail: zajo@geocities.com
  13. // URL:    http://www.geocities.com/SiliconValley/Bay/3577
  14.  
  15. #if !defined( NOPARAM ) || !defined( NOCONFIG )
  16. void init_startup( int argc, char *argv[] );
  17. #endif
  18. #ifndef NOPARAM
  19.   void init_comlin( int argc, char *argv[] );
  20. #endif
  21. #ifndef NOCONFIG
  22.   void init_config( void );
  23. #endif
  24.  
  25. void init_system( void );
  26.  
  27. void init_drivers( void );
  28.  
  29. void init_dc( void );
  30.   void init_icons( void );
  31.   void init_colors( void );
  32.  
  33. void init_application( void );
  34.   void init_desktop( void );
  35. #if !defined( NOTOOLS ) || !defined( NOMENUS )
  36.   void init_cmdgen( void );
  37. #endif
  38. #ifndef NOCLOCK
  39.   void init_clock( void );
  40. #endif
  41. #ifdef MEMMON
  42.   void init_mem( void );
  43. #endif
  44.  
  45. #if !defined( NOPARAM ) || !defined( NOCONFIG )
  46. void tini_startup( void );
  47. #endif
  48. #ifndef NOCONFIG
  49.   void tini_config( void );
  50. #endif
  51. #ifndef NOPARAM
  52.   void tini_comlin( void );
  53. #endif
  54.  
  55. void init_screen( void );
  56. void init_editors( void );
  57.